home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Startup next >
Encoding:
Text File  |  1994-04-21  |  2.5 KB  |  101 lines  |  [TEXT/MPS ]

  1. #    {BedASLMDir} - The path to the copy build ASLM libraries to.
  2. if ¬ "{BedASLMDir}"
  3.         Set BedASLMDir "{OPF}"SharedLib:
  4.         Export BedASLMDir
  5. end
  6.  
  7. ################################################################################
  8. # Stuff you probably don't want to mess with
  9. ################################################################################
  10.  
  11. if "`Exists "{MPW}UserStartup•OpenDoc"`"
  12.     Execute "{MPW}UserStartup•OpenDoc"
  13. else
  14.     echo "Error: Please copy UserStartup•OpenDoc to your MPW folder"
  15. end
  16.  
  17. #    {BedODCPlusIncludes} - The path to the OpenDoc Includes Folder.
  18. if ¬ "{BedODCPlusIncludes}"
  19.         Set BedODCPlusIncludes "{ODCPlusIncludes}"
  20.         Export BedODCPlusIncludes
  21. end
  22.  
  23. #    {BedODRIncludes} - The path to the OpenDoc RIncludes Folder.
  24. if ¬ "{BedODRIncludes}"
  25.         Set BedODRIncludes "{ODRIncludes}"
  26.         Export BedODRIncludes
  27. end
  28.  
  29. #    {BedODLibraries} - The path to the OpenDoc Libraries Folder.
  30. if ¬ "{BedODLibraries}"
  31.         Set BedODLibraries "{ODLibraries}:SCppLibraries:"
  32.         Export BedODLibraries
  33. end
  34.  
  35. #    {BedLibDir} - The path to the OPF Libraries Folder.
  36. if ¬ "{BedLibDir}"
  37.         Set BedLibDir "{OPF}"Lib:
  38.         Export BedLibDir
  39. end
  40.  
  41. #    {BedBinDir} - The path to the OPF Binaries Folder.
  42. if ¬ "{BedBinDir}"
  43.         Set BedBinDir "{OPF}"SharedLib:
  44.         Export BedBinDir
  45. end
  46.  
  47. #    {BedToolsDir} - The path to other OPF Tools Folder
  48. if ¬ "{BedToolsDir}"
  49.         Set BedToolsDir "{OPF}"Tools:Mac:
  50.         Export BedToolsDir
  51. end
  52.         
  53.         Set Commands "{BedToolsDir},{Commands}"
  54.         Export Commands
  55.  
  56. #    {BedMakefileName} - The Name of FWBuild's MakeFiles
  57. if ¬ "{BedMakefileName}"
  58.         Set BedMakefileName "MacMake"
  59.         Export BedMakefileName
  60. end
  61.  
  62. #    {BedMakefileExt} - The extension of FWBuild's MakeFiles
  63. if ¬ "{BedMakefileExt}"
  64.         Set BedMakefileExt ".bmk"
  65.         Export BedMakefileExt
  66. end
  67.  
  68. #    {BedTempDir} - The Location for FWBuild's temporary files
  69. if ¬ "{BedTempDir}"
  70.         Set BedTempDir "{MPW}"
  71.         Export BedTempDir
  72. end
  73.  
  74. #    {BedTempExt} - The extension for FWBuild's temporary files
  75. if ¬ "{BedTempExt}"
  76.         Set BedTempExt ".tmp"
  77.         Export BedTempExt
  78. end
  79.  
  80. #    {BedAutoTargets} - The name of the auto-targets file
  81. if ¬ "{BedAutoTargets}"
  82.         Set BedAutoTargets "{BedToolsDir}"autotarg.txt
  83.         Export BedAutoTargets
  84. end
  85.  
  86. #    {BedPreMake} - The name of FWBuild's Premake file
  87. if ¬ "{BedPreMake}"
  88.         Set BedPreMake "{BedToolsDir}"MacMake.dfn
  89.         Export BedPreMake
  90. end
  91.  
  92. #    {BedPostMake} - The name of FWBuild's Premake file
  93. if ¬ "{BedPostMake}"
  94.         Set BedPostMake "{BedToolsDir}"MacMake.rul
  95.         Export BedPostMake
  96. end
  97.  
  98. #    {Commands} - Directories to search for commands.
  99.             SET Commands "{OPF}Tools:Mac:,{Commands}"
  100.             EXPORT Commands
  101.